Conditions | 4 |
Paths | 3 |
Total Lines | 20 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { fromJS } from 'immutable'; |
||
14 | import { |
||
15 | pageLocal, |
||
16 | pageRemote |
||
17 | } from './../../actionHelpers/plugins/pager'; |
||
18 | |||
19 | const initialState = fromJS({ lastUpdate: generateLastUpdate() }); |
||
20 | |||
21 | export default handleActions({ |
||
22 | [PAGE_LOCAL]: pageLocal, |
||
23 | [PAGE_REMOTE]: pageRemote |
||
24 | }, initialState); |
||
25 |